home *** CD-ROM | disk | FTP | other *** search
/ Data Base of the Video Yearbook 1995 / Data Base of the Video Yearbook 1995 - Disc 1.iso / cosmos / menu.dir / 00017_Untitled-2.ls < prev    next >
Encoding:
Text File  |  1995-12-21  |  514 b   |  22 lines

  1. on mouseDown
  2.   set h to the locH of sprite clickOn()
  3.   set v to the locV of sprite clickOn()
  4.   repeat while the stillDown
  5.     if rollOver(clickOn()) then
  6.       set the locH of sprite clickOn() to h + 5
  7.       set the locV of sprite clickOn() to v + 5
  8.     else
  9.       set the locH of sprite clickOn() to h
  10.       set the locV of sprite clickOn() to v
  11.     end if
  12.     updateStage()
  13.   end repeat
  14.   set the locH of sprite clickOn() to h
  15.   set the locV of sprite clickOn() to v
  16.   updateStage()
  17. end
  18.  
  19. on mouseUp
  20.   quit()
  21. end
  22.